Skip to content

Instantly share code, notes, and snippets.

@OmerFarukOruc
OmerFarukOruc / claude.md
Last active February 3, 2026 05:36
AI Agent Workflow Orchestration Guidelines

AI Coding Agent Guidelines (claude.md)

These rules define how an AI coding agent should plan, execute, verify, communicate, and recover when working in a real codebase. Optimize for correctness, minimalism, and developer experience.


Operating Principles (Non-Negotiable)

  • Correctness over cleverness: Prefer boring, readable solutions that are easy to maintain.
  • Smallest change that works: Minimize blast radius; don't refactor adjacent code unless it meaningfully reduces risk or complexity.
@Lxtharia
Lxtharia / WindowHJKL.ahk
Created September 26, 2024 10:16
Autohotkey script to move around (focus) visible windows on Windows using Win+hjkl
#Requires AutoHotkey v2.0
; Window styles for easier filtering of valid windows
styles := Map(
"WS_BORDER", 0x800000, "WS_POPUP", 0x80000000,
"WS_CAPTION", 0xC00000, "WS_CLIPSIBLINGS", 0x4000000,
"WS_DISABLED", 0x8000000, "WS_DLGFRAME", 0x400000,
"WS_GROUP", 0x20000, "WS_HSCROLL", 0x100000,
"WS_MAXIMIZE", 0x1000000, "WS_MAXIMIZEBOX", 0x10000,
"WS_MINIMIZE", 0x20000000, "WS_MINIMIZEBOX", 0x20000,
@emschwartz
emschwartz / README.md
Last active February 3, 2026 05:32
The Most Popular Blogs of Hacker News in 2025

This is an OPML version of the HN Popularity Contest results for 2025, for importing into RSS feed readers.

Plug: if you want to find content related to your interests from thousands of obscure blogs and noisy sources like HN Newest, check out Scour. It's a free, personalized content feed I work on where you define your interests in your own words and it ranks content based on how closely related it is to those topics.

@ndraiman
ndraiman / ssh_into_wsl2.md
Last active February 3, 2026 05:32
SSH Into WSL2

Guide: How to SSH Into WSL2

Install WSL2 SSH server

  1. Open your wsl ubuntu terminal

  2. install open-ssh server

    sudo apt update 

sudo apt install openssh-server

@Ryunosuke-Tanaka-sti
Ryunosuke-Tanaka-sti / fature-plan.md
Created January 28, 2026 10:39
Claude Code Slash コマンドでSDDを実現するためのファイル
description argument-hint allowed-tools
実装計画とアクションプランを作成し、docs/features/ に保存。機能開発の計画フェーズをサポートします。
feature-name
Read, Glob, Grep, Task, Write, Bash, WebSearch, WebFetch, TodoWrite, AskUserQuestion

Plan Command

You are now in planning mode. Your task is to create a comprehensive implementation plan for: $ARGUMENTS

@RandyMcMillan
RandyMcMillan / byzantine_quorum.rs
Last active February 3, 2026 05:27 — forked from rust-play/playground.rs
byzantine_quorum.rs
use std::collections::HashMap;
use rand::{seq::SliceRandom, thread_rng};
// --- BQS Constants ---
// Maximum number of Byzantine faults (f or b) the system can tolerate.
const F: u32 = 4;
// The required supermajority count for a client to accept a value as correct.
// A value is only considered valid if F + 1 servers report it, allowing the
// client to mask 'F' colluding malicious responses.